home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Environments / SmallEiffel 0.3.3 / SmallEiffel 68k / bin / hello_world.e < prev    next >
Encoding:
Text File  |  1996-06-08  |  532 b   |  25 lines  |  [TEXT/CWIE]

  1. -- Part of SmallEiffel -- Read DISCLAIMER file -- Copyright (C) 
  2. -- Dominique COLNET and Suzanne COLLIN -- colnet@loria.fr
  3. --
  4. class HELLO_WORLD
  5. --
  6. -- The "Hi World program" for SmallEiffel :-)   
  7. --   
  8. -- To compile type command : compile hello_world make
  9. -- Run with command : a.out   
  10. --
  11. -- To compile an optimized version type : compile hello_world make -boost -O2
  12. --
  13.  
  14. creation {ANY}
  15.    make
  16.  
  17. feature {ANY}
  18.    
  19.    make is 
  20.       do  
  21.          Current.io.put_string("Hello World.%N");
  22.       end; -- make
  23.  
  24. end -- class HELLO_WORLD
  25.